The due date is: 11/22/2022

The internation due date is: 22/11/2022

Number of characters in 'Go Broncos' is: 11

Removing whitespace from both sides of ' go broncos ' is: go broncos

Changing string 'BRONCOS' to lowercase: broncos

Whether or not string "I am a student at DMACC" contains "DMACC": 19

The string 1234567890 formatted into a phone number is: 123-456-7890

The number 123456 formatted into U.S. currency is: $123,456.00

Instructions: Create a function that will accept a timestamp and format it into mm/dd/yyyy format. Create a function that will accept a timestamp and format it into dd/mm/yyyy format to use when working with international dates. Create a function that will accept a string input. It will do the following things to the string: Display the number of characters in the string Trim any leading or trailing whitespace Display the string as all lowercase characters Will display whether or not the string contains "DMACC" either upper or lowercase Create a function that will accept a number and display it as a formatted phone number. Use 1234567890 for your testing. Create a function that will accept a number and display it as US currency with a dollar sign. Use 123456 for your testing.